.spoiler {
    background-color: var(--background-color-shade);
    border-radius: 5px;
    color: transparent;
    user-select: none;

    transition: background 0.3s ease 0.2s, color 0.2s ease 0.25s
}

.spoiler:hover {
    background-color: inherit;
    color: inherit;
}